home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jazlib.arc / JZGETTIM.C < prev    next >
Text File  |  1988-12-18  |  201b  |  11 lines

  1. jzgettim( ftime )
  2. char *ftime;
  3. {
  4.   union REGS winreg,woutreg;
  5.  
  6.   winreg.h.ah = 0x2c;
  7.   intdos(&winreg,&woutreg);
  8.   sprintf(ftime,"%02d:%02d:%02d",woutreg.h.ch,woutreg.h.cl,woutreg.h.dh);
  9. }
  10.  
  11.